home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Select (Limited Edition)
/
Computer Select.iso
/
pcc
/
v04n11
/
batch1.exe
/
ADDPATH.BAT
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1991-09-17
|
279 b
|
15 lines
@ECHO OFF
REM This is ADDPATH.BAT
IF %1!==! GOTO OOPS
PATH > \OLDPATH.BAT
SET PATH=%PATH%;%1
GOTO END
:OOPS
ECHO Enter the name of the
ECHO subdirectory to add to
ECHO your PATH after the %0
ECHO.
ECHO Type \OLDPATH to restore
ECHO your original PATH setting.
:END